-
Notifications
You must be signed in to change notification settings - Fork 19
BES-1248: Post build logs to aws for docker builds #1249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
ndp-opendap
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure that works!
My two bits (for the floor, as you wish): I have come around to James' preference of explicitly calling test rather than doing it implicitly with the [[...]] syntax:
if test "$BES_BUILD" = "main" -o "$BES_BUILD" = "distcheck" -o "$BES_BUILD" = "docker"*
travis/upload-test-results.sh
Outdated
|
|
||
| LOG_FILE_TGZ=bes-autotest-${TRAVIS_JOB_NUMBER}-logs.tar.gz | ||
| if test x$BES_BUILD = xmain -o x$BES_BUILD = xdistcheck | ||
| if [[ $BES_BUILD = "main" || "$BES_BUILD" = "distcheck" || "$BES_BUILD" = "docker"* ]] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First $BES_BUILD needs double quotes
ndp-opendap
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for that!
|
|
|



Description
Feature #1248. Adds parity with other jobs, namely, job log is now posted to AWS for docker jobs.
Tasks
Tests added/updatedDead code removed